画布 子图
画布
fig = plt.figure()
图
ax1 = fig.add_subplot(2,2,1) // 切成 2行, 2列, 第一个位置
调整子图间距
subplots_adjust(left,bottom,right,top,wspace,hspace)
plt.bar() 柱状图
plt.pie() 饼状图
画布
fig = plt.figure()
图
ax1 = fig.add_subplot(2,2,1) // 切成 2行, 2列, 第一个位置
调整子图间距
subplots_adjust(left,bottom,right,top,wspace,hspace)
plt.bar() 柱状图
plt.pie() 饼状图